PUT Existing Live Video
Overview
The table below provides key details about the PUT method for updating a Live Video by id.
| PUT Existing Live Video | |
|---|---|
| Method | PUT | 
| URL or Endpoint | /api/v2/ projectId/live-videos/id | 
| Headers | Authorization | 
| Content Type | application/json | 
| Parameters | id, projectId | 
| Request Body | title, description, author, publishDate, publishEndDate | 
The description of the URL parameter is as follows:
| id URL Parameter | |
|---|---|
| URL Parameter Name | id | 
| Mandatory | Yes | 
| Type | string | 
| Description | Unique Id of the live video. | 
| projectId URL Parameter | |
|---|---|
| URL Parameter Name | projectId | 
| Mandatory | Yes | 
| Type | string | 
| Description | Unique Id of the project. | 
Request Body
The description of the body parameters is as follows:
| Parameter Name | Mandatory | Type | Description | 
|---|---|---|---|
| Title | Yes | string | Title of the live video | 
| Description | No | string | Description of the live video | 
| Author | No | string | The name of the author of the live video. | 
| PublishDate | No | string($date-time) | The date and time when the video is scheduled to be published. | 
| PublishEndDate | No | string($date-time) | The date and time when the publication of the video is set to end. | 
Response
{
  "success": true,
  "errors": [
    "string"
  ],
  "messages": [
    "string"
  ],
  "result": {
    "publicId": "string",
    "id": "string",
    "name": "string",
    "title": "string",
    "description": "string",
    "playbackUrl": "string",
    "thumbnail": "string",
    "channelPublicId": "string",
    "channelName": "string",
    "channelTitle": "string",
    "liveStatus": "string",
    "author": "string",
    "publishDate": "2024-11-12T15:47:45.067Z",
    "publishEndDate": "2024-11-12T15:47:45.067Z",
    "startDateUTC": "2024-11-18T09:34:35.875Z",
    "endDateUTC": "2024-11-18T09:34:35.875Z",
    "dvrEnabled": true,
    "canCutAndPublish": true,
    "canStopAndCut": true,
    "canStopWithoutSaving": true
  },
  "resultInfo": "string",
  "statusCode": 0
}
Information about the fields that appear when you receive the response are displayed in the table below.
| Field Name | Type | Description | 
|---|---|---|
| success | bool | If the response is successful, it will return true. Otherwise, it will return false. | 
| errors | array[string] | Indicates if there was an error. | 
| messages | array[string] | Returns the response message from the back-end. | 
| result | object | Returns the response object containing detailed information about the live video. | 
| publicId | string | Returns the public identifier of the live video. | 
| id | string | Returns the identifier of the live video. | 
| name | string | Returns a GUID that is randomly generated. | 
| title | string | Returns the title of the live video. | 
| description | string | Returns the description of the live video. | 
| playbackUrl | string | Returns a file URL where the livestream can be accessed for playback. | 
| thumbnail | string | Returns the URL of the thumbnail for the video. | 
| channelPublicId | string | Returns the public identifier of the channel. | 
| channelName | string | Returns the name of the channel. | 
| channelTitle | string | Returns the title of the channel. | 
| liveStatus | string | Indicates the live status of the live video. | 
| author | string | Returns the author of the live video. | 
| publishDate | string (date-time) | Returns the date and time when the video was created. | 
| publishEndDate | string (date-time) or null | Returns the date and time when the publication of the video is set to end. | 
| startDateUTC | string | Represents the start date and time of the event in UTC format. | 
| endDateUTC | string | Represents the end date and time of the event in UTC format. | 
| dvrEnabled | boolean | Indicates if DVR functionality is enabled for the video. | 
| canCutAndPublish | boolean | Indicates if the video can be cut and published. | 
| canStopAndCut | boolean | Indicates if the video can be stopped and cut. | 
| canStopWithoutSaving | boolean | Indicates if the video can be stopped without saving. | 
| resultInfo | string | Returns extra information about the result. (May be null) | 
| statusCode | integer | Returns the HTTP Status Code. | 
If the action is successful, the service sends back an HTTP 200 or 201 response.
Errors
For information about the errors that are common to all actions, see Common Errors:
- HTTP Status Code 400: Bad Request 
- HTTP Status Code 401: Unauthorized 
- HTTP Status Code 403: Forbidden 
- HTTP Status Code 404: Result Not Found 
- HTTP Status Code 500: Internal Server Error 
- HTTP Status Code 503: Backend Fetch Failed